home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / TK-TURBO.ZIP / TURBO.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1996-04-03  |  1KB  |  102 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Boolean  BOOLEAN001
  20.     Integer  INTEGER001
  21.     String   STRING001
  22.     String   STRING002
  23.     String   STRING003
  24.     String   STRING004
  25.     String   STRING005
  26.  
  27. ;------------------------------------------------------------------------------
  28.  
  29.     STRING002 = ReadLine(PPEPath() + "TURBO.CFG", 1)
  30.     STRING003 = ReadLine(PPEPath() + "TURBO.CFG", 2)
  31.     STRING004 = ReadLine(PPEPath() + "TURBO.CFG", 3)
  32.     STRING005 = ReadLine(PPEPath() + "TURBO.CFG", 4)
  33.     INTEGER001 = ReadLine(PPEPath() + "TURBO.CFG", 5)
  34.     BOOLEAN001 = 0
  35.     GetUser
  36.     If (U_Sec <= INTEGER001) Goto LABEL001
  37.     AnsiPos 1, GetY()
  38.     Print "@CLREOL@" + STRING002
  39.     While (1) Do
  40.         STRING001 = ""
  41.         STRING001 = Inkey()
  42.         If ((STRING001 == "LEFT") || (STRING001 == "4")) Then
  43.             AnsiPos 1, GetY()
  44.             Print "@CLREOL@" + STRING002
  45.             BOOLEAN001 = 0
  46.         Endif
  47.         If ((STRING001 == "RIGHT") || (STRING001 == "6")) Then
  48.             AnsiPos 1, GetY()
  49.             Print "@CLREOL@" + STRING003
  50.             BOOLEAN001 = 1
  51.         Endif
  52.         If (STRING001 == Chr(13)) Break
  53.     EndWhile
  54.     :LABEL001
  55.     If (BOOLEAN001 == 0) DispFile STRING004, 0
  56.     If (BOOLEAN001 == 1) DispFile STRING005, 0
  57.  
  58. ;------------------------------------------------------------------------------
  59. ;
  60. ; Usage report (before postprocessing)
  61. ;
  62. ; ■ Statements used :
  63. ;
  64. ;    6       Goto 
  65. ;    10      Let 
  66. ;    3       Print 
  67. ;    7       If 
  68. ;    2       DispFile 
  69. ;    1       GetUser
  70. ;    3       AnsiPos 
  71. ;
  72. ;
  73. ; ■ Functions used :
  74. ;
  75. ;    8       +
  76. ;    7       ==
  77. ;    1       <=
  78. ;    3       !
  79. ;    2       ||
  80. ;    1       Chr()
  81. ;    1       Inkey()
  82. ;    5       PPEPath()
  83. ;    5       ReadLine()
  84. ;    3       GetY()
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;
  88. ; Analysis flags : No flag
  89. ;
  90. ;------------------------------------------------------------------------------
  91. ;
  92. ; Postprocessing report
  93. ;
  94. ;    0       For/Next
  95. ;    1       While/EndWhile
  96. ;    2       If/Then or If/Then/Else
  97. ;    0       Select Case
  98. ;
  99. ;------------------------------------------------------------------------------
  100. ;                 AEGiS Corp - Break the routines, code against the machines!
  101. ;------------------------------------------------------------------------------
  102.